projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e762e30
)
(lock_file): Use assignment, not initialization.
author
Karl Heuer
<kwzh@gnu.org>
Wed, 23 Mar 1994 22:29:02 +0000
(22:29 +0000)
committer
Karl Heuer
<kwzh@gnu.org>
Wed, 23 Mar 1994 22:29:02 +0000
(22:29 +0000)
src/filelock.c
patch
|
blob
|
history
diff --git
a/src/filelock.c
b/src/filelock.c
index 48d1f0f758bafa4ea68404dc001e3775a8f2e0f9..d6ee952348bf2bb140644a14aae8a3ba963c15fa 100644
(file)
--- a/
src/filelock.c
+++ b/
src/filelock.c
@@
-207,7
+207,8
@@
lock_file (fn)
/* See if this file is visited and has changed on disk since it was
visited. */
{
- register Lisp_Object subject_buf = Fget_file_buffer (fn);
+ register Lisp_Object subject_buf;
+ subject_buf = Fget_file_buffer (fn);
if (!NILP (subject_buf)
&& NILP (Fverify_visited_file_modtime (subject_buf))
&& !NILP (Ffile_exists_p (fn)))